home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / prg_casm / wsc4c10.zip / RS232._B_ < prev    next >
Text File  |  1996-09-04  |  1KB  |  42 lines

  1. #
  2. # Borland makefile for RS232
  3. #
  4. # To use: "maker -frs232._B_"
  5. # Note: Use "maker", not "make"
  6. #
  7. # Note: Replace the reference "D:\COMPILER\BC45\INCLUDE" below
  8. #       with your compilers INCLUDE path.
  9. #
  10.  
  11. C_FLAGS = -c -2
  12. L_FLAGS = -c -n -Tw
  13.  
  14. rs232.exe: rs232.res rs232.obj rs232.def  \
  15.             about.obj line.obj config.obj menu.obj \
  16.             paint.obj wscerror.obj
  17.     tlink -c -n -Tw  c0ws @rs232.rsp ,rs232,rs232, mathws cws import wsc,rs232,rs232
  18.     rlink rs232.res rs232.exe
  19.  
  20. rs232.res: rs232.rc
  21.     brcc -iD:\COMPILER\BC45\INCLUDE rs232.rc
  22.  
  23. about.obj: about.c about.h
  24.    bcc $(C_FLAGS)  about.c
  25.  
  26. rs232.obj: rs232.c rs232.h wsc.h
  27.    bcc $(C_FLAGS)  rs232.c
  28.  
  29. config.obj: config.c config.h wsc.h
  30.     bcc $(C_FLAGS)  config.c
  31.  
  32. paint.obj: paint.c paint.h wsc.h
  33.     bcc $(C_FLAGS)  paint.c
  34.  
  35. line.obj: line.c line.h wscerror.h
  36.     bcc $(C_FLAGS)  line.c
  37.  
  38. menu.obj: menu.c menu.h wscerror.h
  39.     bcc $(C_FLAGS)  menu.c
  40.  
  41. wscerror.obj: wscerror.c wscerror.h wscerror.h
  42.     bcc $(C_FLAGS)  wscerror.c